home *** CD-ROM | disk | FTP | other *** search
- thisH = 0;
- nHamTyp = new Array();
- originalCursorX = _root.cursor._x;
- originalCursorY = _root.cursor._y;
- orderTyp = random(2);
- hamNum = random(6) + 3;
- trace("주문타입=" + orderTyp + ", 햄버거모양=" + hamNum);
- hamTyp = new Array();
- i = 0;
- while(i < hamNum)
- {
- hamTyp.push(random(5) + 2);
- i++;
- }
- hamTyp.unshift(7);
- hamTyp.push(1);
- hamTyp.reverse();
- trace(hamTyp);
- trace("-----------------------------------------");
-